A good answer might be:

3 + 5 = 8


Fibonacci

This problem was studied and solved by a famous mathematician, Fibonacci. The numbers of rabbits form the Fibonacci series. This series turns out to have important applications in several problems that have nothing to do with rabbits. Call the N'th number in the series Fib(N):

Fibonacci Series
N12345 678910
Fib(N)11235 813213455

Here is the rule for filling the chart, rewritten for Fib(N):

Fib( N ) = Fib( N-1 ) + Fib( N-2 )

Look at the chart to verify that the rule works.

QUESTION 14:

Is the rule a correct recursive definition?